home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / gnat1792.zip / gnat179b / t-adainc / a-decima.ads < prev    next >
Text File  |  1994-05-19  |  3KB  |  59 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                          A D A . D E C I M A L                           --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.3 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. package Ada.Decimal is
  26.  
  27.    pragma Pure;
  28.  
  29.    pragma Unimplemented_Unit;
  30.  
  31.    Max_Scale : constant := +18;
  32.    Min_Scale : constant := -18;
  33.  
  34.    Min_Delta : constant := 10.0E-18;
  35.    Max_Delta : constant := 10.0E+18;
  36.  
  37.    Max_Decimal_Digits : constant := 18;
  38.  
  39.    generic
  40.       type Dividend_Type  is delta <> digits <>;
  41.       type Divisor_Type   is delta <> digits <>;
  42.       type Quotient_Type  is delta <> digits <>;
  43.       type Remainder_Type is delta <> digits <>;
  44.  
  45.    package Division is
  46.  
  47.       procedure Divide (Dividend  : in Dividend_Type;
  48.                         Divisor   : in Divisor_Type;
  49.                         Quotient  : out Quotient_Type;
  50.                         Remainder : out Remainder_Type);
  51.  
  52.       procedure Divide (Dividend  : in Dividend_Type;
  53.                         Divisor   : in Divisor_Type;
  54.                         Quotient  : out Quotient_Type;
  55.                         Rounded   : in Boolean := False);
  56.    end Division;
  57.  
  58. end Ada.Decimal;
  59.